home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20031205.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  65 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12515);
  10.  script_bugtraq_id(9065);
  11.  script_version ("$Revision: 1.2 $");
  12.  name["english"] = "Security Update 2003-12-05";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Security Update 2003-12-05.
  18.  
  19. This update fixes a flaw in the Safari web browser which may
  20. allow a rogue web site to access the web cookies of the user of
  21. the remote host.
  22.  
  23. Solution : 
  24. http://www.apple.com/downloads/macosx/apple/securityupdate20031205forjaguar.html
  25. http://www.apple.com/downloads/macosx/apple/securityupdate20031205forpanther.html
  26.                
  27. Risk factor : High";
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Check for Security Update 2003-12-05";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "MacOS X Local Security Checks";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("ssh_get_info.nasl");
  42.  script_require_keys("Host/MacOSX/packages");
  43.  exit(0);
  44. }
  45.  
  46.  
  47. packages = get_kb_item("Host/MacOSX/packages");
  48. if ( ! packages ) exit(0);
  49.  
  50. uname = get_kb_item("Host/uname");
  51.  
  52. # Security Update 2004-05-03 actually includes this update for MacOS X 10.2.8 Client
  53. if ( egrep(pattern:"Darwin.* 6\.8\.", string:uname) )
  54. {
  55.  if ( egrep(pattern:"^SecUpd2004-05-03", string:packages) ) exit(0);
  56. }
  57.  
  58.  
  59.  
  60. # MacOS X 10.2.8 and 10.3.1 only
  61. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.1\.)", string:uname) )
  62. {
  63.   if ( ! egrep(pattern:"^SecurityUpd2003-12-05", string:packages) ) security_hole(0);
  64. }
  65.